/* --------- */
/* VARIABLES */
/* --------- */

:root {
    --color-background: #F8E8EE;
    --color-border: #F2BED1;
    --color-scrollbar: #F8E8EE;
    --color-text-basic: #CDC1FF;
    --color-text-highlighted: #CDC1FF;
    --color-text-light: #ebefff;
    --color-text-lightbold: rgba(71, 138, 184, 0.5);
    --color-text-titlegradient: linear-gradient(to bottom, #94B7E0, #508FBC);
}

@font-face {
    font-family: basiic;
    src: url('../assets/fonts/basiic.ttf');
  }


@keyframes rotation {
    0%   {transform: rotate(345deg); zoom: 99%;}
    50%  {transform: rotate(355deg); zoom: 115%;}
    100% {transform: rotate(345deg); zoom: 99%;}
}
/* ------- */
/* GENERAL */
/* ------- */

html {
    overflow-x: hidden;
}

html,body {height: 100%;}

body {
    background-image: url('../assets/img/background.png');
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: basiic;
    font-size: clamp(1rem, 3vw, 1.625rem);

    overflow-x: hidden;
}

p,
a {
    line-height: 1;
}

main {
    position: relative;
    display: flex;
    height: 100%;
}


main{
    max-width: 630px;
}

.container{
    background: var(--color-background);
    border: 3px ridge var(--color-border);
    color: var(--color-text-basic);
    margin: 10px;
    padding: 10px;
}

.badgeholder{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding : 3px;
}

.title{
    display: flex;
    max-height: auto;
    
}

header{
    margin-top: 10vh;
}

.header-img{
    width: 10em;
    height: 4em;
    position: absolute;
    top: -50px;
    left: -100px;
    transform: rotate(345deg);
    animation-name: rotation;
    animation-duration: 4s;
    animation-iteration-count: infinite;
}

.header-text{
    font-size: 1.7em;
    font-weight: bold;
}


h2 {
    font-family: daydream, sans-serif;
    font-size: .5em;
    background: var(--color-text-titlegradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: .5em;
}

h3 {
    font-weight: normal;
}

img {
    image-rendering: pixelated;
}

.box {
    padding: .75em;
    margin: .4em;
}

/* ------ */
/* HEADER */
/* ------ */

header {
    display: flex;
    max-width: 684px;
    position: relative;
    z-index: 10;
}

header #headerbox {
    width: 62%;
    display: flex;
    margin-bottom: 0;
    padding: .2em;
    display: flex;
    justify-content: space-between;
    align-items: end;
    background-color: var(--color-scrollbar);
    transform: rotate(-3deg);
    animation: spin_headerbox 3s ease-in-out infinite;
}

@keyframes spin_headerbox {
    0% {
        transform: rotate(-9deg);
    }

    50% {
        transform: rotate(-6deg);
    }

    100% {
        transform: rotate(-9deg);
    }
}

header aside h1 {
    font-family: daydream, sans-serif;
    font-size: .6em;
    color: white;
    font-weight: normal;
}

header aside p {
    font-family: kiwisoda, sans-serif;
    font-size: .625em;
    color: var(--color-text-light);
}

/* ---- */
/* LEFT */
/* ---- */

#left {
    width: 200px;
    margin-left: .4em;
    /* transform: rotate(-2deg); */
}

/* LISTENING TO */

#listeningto {
    text-align: center;
    display: flex;
    flex-direction: column;
    overflow: auto;
    margin-right: 0;
    margin-left: 0;
    overflow: hidden;
    padding: .5em;
}

#listeningto h2 {
    font-size: .4em;
    margin-bottom: .5em;
}

#listeningto #cdcontainer {
    position: relative;
    display: flex;
    align-items: start;
    max-height: 4.4em;
    padding-left: .45em;
    background-image: url("/src/img/deco/cdbox.png");
    background-repeat: no-repeat;
    background-size: contain;
}

#listeningto #trackart {
    max-height: inherit;
    width: 4.22em;
}

#listeningto #cd {
    position: absolute;
    width: 62%;
    top: .1em;
    right: 0;
    animation: cdspin 3s linear infinite;
    z-index: -1;
}

#listeningto p {
    font-size: .75em;
    margin-bottom: .4em;
}

@keyframes cdspin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* ----- */
/* RIGHT */
/* ----- */

#right {
    /* width: 10em; */
    max-width: 200px;
    margin-right: .4em;
}

/* FEATURED VIDEO */

#featuredvideo {
    position: relative;
    margin-left: 0;
}

#featuredvideo h2 {
    text-align: center;
    margin-bottom: 1em;
}

#featuredvideo .video {
    height: 6em;
}


/* ------ */
/* CENTER */
/* ------ */

#center {
    max-width: 684px;
    position: relative;
}

/* INTRODUCTION */

#introduction {
    height: 327px;
    overflow: auto;
    margin-top: 0;
    position: relative;
}

#logo {
    position: absolute;
    width: 12em;
    top: -1.75em;
    right: -1.75em;
    z-index: 9;
    pointer-events: none;
}

#logocontainer {
    position: relative;
}

#logocontainer img {
    position: absolute;
    top: 0;
    right: -1em;
    /* width: 50%; */
    /* width: ; */
    /* width: 58em; */
}

#whereami {
    display: flex;
    position: relative;
}

#mecat {
    width: 4em;
    transform: scaleX(-1);
}

#whereami--text {
    margin-left: 1em;
}

#whereami--text #l0r3z_username {
    font-size: 1.2em;
    /* text-shadow: 1px 1px 5px rgb(255, 255, 255), -1px -1px 5px rgba(106, 155, 255, 0.684); */
}

#aboutwebsite {
    margin: .4em .4em .25em;
}

#noteaboutthewebsite ul {
    margin-left: 1em;
}

#noteaboutthewebsite li {
    margin-top: .25em;
}

/* #aboutwebsite .big {
    font-size: em;
} */

/* ABOUT ME & CODE OF HONOR */

#aboutme_codeofhonor {
    display: flex;
    margin: 0;
    height: 200px;
}

/* ABOUT ME */

#aboutme {
    overflow: auto;
    width: 55%;
    margin-top: 0;
}

#aboutme h2 {
    font-size: .4em;
    position: relative;
}

#aboutme h2 img {
    position: absolute;
    height: 2em;
    margin-left: 1em;
    bottom: .05em;
}

#aboutme p {
    font-size: .8em;
    margin-bottom: .2em;
}

#aboutme--intro {
    display: flex;
    flex-direction: line;
}

#aboutme ul {
    margin-left: .5em;
    margin-top: .5em;
    margin-bottom: .5em;
}

#aboutme li {
    margin-top: .2em;
}


#aboutme li p {
    margin-bottom: 0;
}

#aboutme li .float {
    animation: float .2s ease-in infinite;
}

#aboutme--socials {
    text-align: center;
    margin-top: .75em;
}


#whatsup {
    margin-bottom: 1.25em;
}

#whatsup p {
    text-align: center;
    font-size: 1.25em;
    transform: rotate(3deg);
}

/* #about {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1em;
} */

/* #aboutme {
    width: 40%;
    min-width: 120px;
} */

#aboutme {}

/* CODE OF HONOR */

#codeofhonor {
    overflow: auto;
    width: 45%;
    margin-top: 0;
    margin-left: 0;
    position: relative;
}

#codeofhonor h2 {
    font-size: .4em;
}

#codeofhonor--description {
    /* margin-bottom: .5em; */
}

#codeofhonor li {
    margin-top: .4em;
}

#codeofhonor p {
    font-size: .8em;
}

#codeofhonor--gif {
    position: absolute;
    bottom: .25em;
    right: -1.25em;
    transform: rotateZ(-10deg);
    pointer-events: none;
}

/* ------ */
/* FOOTER */
/* ------ */

footer {
    margin-bottom: 2vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

footer .box {
    margin-top: 0;
}

#list8831 {
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.badge8831 {
    height: 1em;
}

#legal {
    color: purple;
    font-size: .6em;
    text-shadow: 1px 1px 5px rgb(255, 255, 255), -1px -1px 5px rgb(26, 102, 254);
}